home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / macros / Interface / Splitpane_Grow.bsh < prev    next >
Text File  |  2013-07-28  |  2KB  |  59 lines

  1. /*
  2.  * Splitpane_grow.bsh v1.1 - a BeanShell macro script for the jEdit text editor
  3.  * Increases the size of the currently active split pane.
  4.  * 
  5.  * Based on SplitPane_up by Claudio Vicari
  6.  *    (c) 2005, 2011 by Alan Ezust
  7.  *    Version 1.1 supports more than 2 editpanes. 
  8.  *
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License
  11.  * as published by the Free Software Foundation; either version 2
  12.  * of the License, or any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with the jEdit program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  22.  *
  23.  *
  24.  * Checked for jEdit 4.5 API
  25.  *
  26.  */
  27.  
  28.  import javax.swing.JSplitPane;
  29.  import org.gjt.sp.jedit.GUIUtilities; 
  30.  
  31.  splitPaneGrow() { 
  32.      EditPane active_area = view.getEditPane(); 
  33.      if( view.getSplitPane() != null ) {
  34.          splitPane = GUIUtilities.getComponentParent(active_area, JSplitPane.class);
  35.          int minimum = splitPane.getMinimumDividerLocation();
  36.          int maximum = splitPane.getMaximumDividerLocation();
  37.          double actual_position = (double)splitPane.getDividerLocation();
  38.          
  39.          /* converts the integer returned by getDividerLocation in a proportion
  40.          between 0.0 and 1.0 */
  41.          actual_position = (actual_position-minimum) / ( maximum - minimum );
  42.          if (splitPane.getLeftComponent() == active_area) {
  43.              actual_position += 0.05;
  44.          }
  45.          else {
  46.              actual_position -= 0.05;
  47.          }
  48.          if( actual_position <= 0.0 )
  49.              actual_position = 0.0;
  50.          if( actual_position >= 1.0 )
  51.              actual_position = 1.0;
  52.          
  53.          splitPane.setDividerLocation( (double)actual_position );
  54.          active_area.focusOnTextArea();
  55.      }
  56.  }
  57.  splitPaneGrow();
  58.  
  59.